﻿html, body {
    height: 100%;
}

.btn {
    border-radius: 30px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.2);
    padding: 6px 10px;
}

.login-page {
    background: #696969;
    position: relative;
}

.login-box {
    width: 712px;
    margin: auto;
    display: flex;  
    background-color: #fff;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -356px;
    margin-top: -195px;
    -webkit-box-shadow: 0px 0px 10px #000;
    -moz-box-shadow: 0px 0px 10px #000;
    box-shadow: 0px 0px 10px #000;
}

.login-box .poweredby {
    display: none;
}

.login-logo {
    float: left;
    width: 262px;
    margin-bottom: 0px;
    background-color: #f9f9f9;
    border-right: solid 1px #ededed;
    padding: 20px;
    position: relative;
}

.login-logo svg {
    width: 150px;
    height: 120px;
}

.login-logo > img {
    height: 126px;
}

.logo-info {
    text-align: left;
    color: #666666;
    margin-top: 30px;
    line-height: 24px;
    /*font-family: verdana;*/
    font-size: 14px;
}

.login-logo .poweredby {
    background-color: #fff;
    border-top: solid 1px #ededed;
    position: absolute;
    left: 0px;
    bottom: 0px;
    width: 100%;
    display: block;
    padding: 10px;
    color: #666666;
}

.login-logo .poweredby span {
    display: inline-block;
    vertical-align: top;
    font-size: 12px;
}

.login-box-body {
    height: 100%;
}

.login-content-wrapper {
    display: flex;
    flex-direction: column;
}

.login-logo-body {
    display: none;
}

.login-box-body > h3 {
    margin-top: 0px;    
    text-transform: uppercase;
    color: #242424;
    margin-bottom: 0px;
}

.login-box-body > h3 + span {
    display: block;
    margin-bottom: 30px;
}

#aspnetSignUpForm .row:after {
    clear: none;
}

.alert.alert-error {
    padding: 5px 10px;
    margin: 20px 0px;
}

.app-common-form .form-field-icon {
    right: auto;
    left: 2px;
    top: 7px;
    z-index: 10;
}

.app-common-form .form-control {
    padding: 6px 12px 6px 42px;
    height: 45px;
    background-color: transparent;
    position: relative;
    z-index: 10;
}

.app-common-form .form-field {
    position: relative;
    margin-bottom: 30px;
}

    .app-common-form .form-field .form-control-label {
        position: absolute;
        margin-bottom: 0px;
        top: 12px;
        left: 43px;
        font-weight: normal;
        color: #bbb;
        z-index: 9;
        transition: all 0.2s;
    }

.app-common-form .form-field-active .form-control {
    border-color: #187ae8;
}

.app-common-form .has-error .form-control {
    border-color: #dd4b39;
}

.app-common-form .form-field-active .form-field-icon {
    color: #187ae8;
}

.app-common-form .has-error .form-field-icon {
    color: #dd4b39;
}

.app-common-form .field-active .form-control-label,
.app-common-form .field-with-value .form-control-label {
    top: -11px;
    left: 6px;
    z-index: 11;
    background-color: #fff;
    padding: 0px 4px;
}

.app-common-form .form-field-active.field-with-value .form-control-label {
    color: #187ae8;
}

.app-common-form .has-error .form-control-label {
    color: #dd4b39;
}

.app-common-form .row-checkbox {
    margin-top: -18px;
}

    .app-common-form .row-checkbox .icheckbox_square-blue,
    .app-common-form .row-checkbox .iradio_square-blue {
        margin-right: 6px;
    }

.login-btn {
    margin-top: 20px;
    text-transform: uppercase;
    height: 45px;
}

    .login-btn i {
        margin-right: 6px;
    }


.mandatory {
    font-size: 16px;
    display: inline-block;
    line-height: 12px;
    font-weight: bold;
}

.red {
    color: #F44336;
}

.forgot-password-link {
    display: block;
    margin-top: 10px;
    text-align: center;
}


@media only screen and (max-width:767px) {
    .login-box {
        width: 94%;
        height: auto;
        left: 3%;
        top: 20px;
        margin: 0px;
        margin-bottom: 20px;
        flex-wrap: wrap;
    }

    .login-box .login-logo {
        float: none;
        width: 100%;
        border: none;
        border: none;
    }

    .login-box .login-logo > img {
        height: 90px;
    }

    .login-box .login-logo .logo-info {
        text-align: center;
        margin-top: 10px;
    }

    .login-box .poweredby {
        display: block;
        text-align: center;
        width: 100%;
        border-top: solid 1px #d6d6d6;
        padding-top: 10px;
    }

    .login-box .login-logo .poweredby {
        display: none;
    }

    .login-box-body {
        padding: 20px 40px 0px;
    }

    .login-logo-body {
        display: none;
    }
    
    .login-btn {
        margin-top: 5px;
    }

    .forgot-password-link {
        float: none;
        margin: 10px 0px 20px;
        display: block;
    }
}